home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EDUCORP 8
/
Educorp2Compilation.sit
/
educorp2
/
Demos
/
Aztec Source Level Debugger
/
demo
/
drawaxes.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-06-14
|
312 b
|
18 lines
#include "barchart.h"
drawaxes(xyb, xaxis, yaxis, xlength, ylength)
register struct XYBase *xyb;
int xaxis, yaxis, xlength, ylength;
{
PenNormal();
MoveTo(xaxis,yaxis-ylength);
Line(0,ylength);
Line(xlength,0);
xyb->xaxis = xaxis;
xyb->yaxis = yaxis;
xyb->xlength = xlength;
xyb->ylength = ylength;
}